home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / jpl_c.zip / MIN.C < prev    next >
Text File  |  1986-05-18  |  640b  |  19 lines

  1. /* 1.0  07-06-84 */
  2. /************************************************************************
  3.  *            Robert C. Tausworthe                *
  4.  *            Jet Propulsion Laboratory            *
  5.  *            Pasadena, CA 91009        1984        *
  6.  ************************************************************************/
  7.  
  8. #include "defs.h"
  9.  
  10. /************************************************************************/
  11.     int
  12. min(x, y)            /* return lesser of x and y, int    */
  13.  
  14. /*----------------------------------------------------------------------*/
  15. int x, y;
  16. {
  17.     return MIN(x,y);
  18. }
  19.